Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcPdfDocument Class / ImportFormDataFromCollection Method / ImportFormDataFromCollection(KeyValuePair<String,IList<String>>[]) Method
The collection of field names and their values.

In This Topic
    ImportFormDataFromCollection(KeyValuePair<String,IList<String>>[]) Method
    In This Topic
    Imports the document's form data from a key/value collection.

    The keys are field names, the values are collections of field values.

    For nested fields, the field's name should include all its parents' names delimited by dots, e.g. TopParent.Parent.MyField.

    This method may be especially useful when importing form data submitted by a web page.

    Syntax
    'Declaration
     
    Public Overloads Sub ImportFormDataFromCollection( _
       ByVal fieldValues() As System.Collections.Generic.KeyValuePair(Of String,IList(Of String)) _
    ) 
    public void ImportFormDataFromCollection( 
       System.Collections.Generic.KeyValuePair<string,IList<string>>[] fieldValues
    )

    Parameters

    fieldValues
    The collection of field names and their values.
    See Also